-
Notifications
You must be signed in to change notification settings - Fork 0
Add GitHub Copilot instructions and VSCode settings with ember-mcp MCP server integration #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com>
|
@copilot don't duplicate information that you have other ways of getting |
Co-authored-by: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com>
Removed duplicated information. Streamlined from 232 to 80 lines by:
Commit: cd1b35a |
|
@copilot also create a vscode settings files so that the local mcp is wired up as you're doing work |
Co-authored-by: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com>
Added
The configuration uses workspace-relative paths so it works for anyone who clones the repo. Commit: 5cac8c0 |
Added
.github/copilot-instructions.mdto provide Copilot with context about this repository and instruct it to use the ember-mcp MCP server when working with Ember.js code. Also added.vscode/settings.jsonto automatically configure the local MCP server for development.Key Instructions
VSCode Settings
Added
.vscode/settings.jsonto automatically wire up the local MCP server for development work:.github/copilot-instructions.mdfor Copilot guidanceserverskey (notmcpServerslike Claude Desktop)The instructions file was streamlined from 232 to 80 lines by removing information that can be obtained through other means (README.md, MCP tools, codebase exploration) and focusing on unique codebase-specific guidance.
Configuration Example
{ "mcpServers": { "ember": { "command": "npx", "args": ["-y", "ember-mcp"] } } }The setup emphasizes always detecting the project's package manager before suggesting commands and using the MCP tools for Ember.js guidance.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.